
-- 개역개정.bdb
update Bible set btext = replace(btext,'침례','세례');

for item in {"개역개정","개역난외주","개역한글","개정국한문","공동번역","바른성경","새번역","쉬운말","쉬운성경","우리말","카톨릭","킹흠정역","한글킹","현대어","현대인"}".bdb" {"개역개정S","개역한글S","원전분해"}".sdb" {"만나주석","매튜헨리","재림교주석","화잇주석"}".cdb"; do
    sqlite3 $item "update Bible set btext = replace(btext,'침례','세례'); update Bible set btext = replace(btext,'浸禮','洗禮'); update Bible set btext = replace(btext,'세례(세례)','세례(침례)');" ; done
for item in "HebGrkKo.dct" ; do
    sqlite3 $item "update Lexicon set dtext = replace(dtext,'침례','세례'); update Lexicon set dtext = replace(dtext,'浸禮','洗禮'); update Lexicon set dtext = replace(dtext,'세례(세례)','세례(침례)');" ; done

-- 만나주석.cdb
update Bible set btext = substr(btext,0,304)||' '||substr(btext,326) where book = 15 and chapter = 6 and verse = 20;
update Bible set btext = substr(btext,0,512)||'.</font></b>'||substr(btext,512) where book = 15 and chapter = 8 and verse = 18;
update Bible set btext = substr(btext,0,497)||'.</font></b> '||substr(btext,498) where book = 16 and chapter = 4 and verse = 7;
update Bible set btext = substr(btext,0,319)||'.</font></b>'||substr(btext,320) where book = 16 and chapter = 6 and verse = 16;
update Bible set btext = substr(btext,23) where book = 16 and chapter = 8 and verse = 6;

update Bible set btext = substr(btext,0,67)||'.</font></b>'||substr(btext,68) where book = 49 and chapter = 6 and verse = 16;
update Bible set btext = substr(btext,0,488)||'.</font></b>'||substr(btext,489) where book = 55 and chapter = 2 and verse = 10;
update Bible set btext = '<b><font color="navy">'||btext where book = 55 and chapter = 2 and verse = 13;
update Bible set btext = substr(btext,0,919)||substr(btext,920,17)||'</font></b>'||substr(btext,937) where book = 58 and chapter = 12 and verse = 22;
update Bible set btext = substr(btext,23) where book = 58 and chapter = 12 and verse = 29;
update Bible set btext = substr(btext,0,67)||'.</font></b>'||substr(btext,68) where book = 60 and chapter = 1 and verse = 12;


